home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / FocusSet.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  1.3 KB  |  67 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _FOCUSSET_
  4. #define _FOCUSSET_
  5.  
  6. #ifndef _ODOBJECT_
  7. #include "ODObject.idl"
  8. #endif
  9.  
  10. //=====================================================================================
  11. // Classes defined in this interface
  12. //=====================================================================================
  13.  
  14. interface  ODFocusSet;
  15.  
  16. //=====================================================================================
  17. // Classes used by this interface
  18. //=====================================================================================
  19.  
  20. interface  ODFocusSetIterator;
  21.  
  22.  
  23. //=====================================================================================
  24. // ODFocusSet
  25. //=====================================================================================
  26.  
  27. interface ODFocusSet : ODObject
  28. {
  29.  
  30.     void Add(in ODTypeToken focus);
  31.  
  32.     void Remove(in ODTypeToken focus);
  33.  
  34.     ODBoolean Contains(in ODTypeToken focus);
  35.  
  36.     ODFocusSetIterator  CreateIterator();
  37.  
  38.  
  39. #ifdef __SOMIDL__
  40.     implementation
  41.     {
  42.         majorversion = 1; minorversion = 0;
  43.  
  44.           functionprefix = ODFocusSet;
  45.  
  46.         override:
  47.             somUninit;
  48.             
  49.         releaseorder:
  50.             Add,
  51.             Remove,
  52.             Contains,
  53.             CreateIterator,
  54.             reserved1,
  55.             reserved2,
  56.             reserved3,
  57.             reserved4,
  58.             reserved5,
  59.             reserved6;
  60.         
  61.  
  62.   };
  63. #endif //# __SOMIDL__
  64. };
  65.  
  66. #endif //# _FOCUSSET_
  67.